home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / cli / whence.lha / WHENCE / smakefile < prev    next >
Makefile  |  1993-10-29  |  678b  |  40 lines

  1. ######################################################################
  2. #
  3. # smakefile to build Whence
  4. #
  5. #   GMD - 16 Feb 93 
  6. #
  7. #
  8. # SAS/C 6.2
  9. #
  10. ######################################################################
  11.  
  12. O=O/
  13. SO=ObjectName=$(O) noIcons
  14.  
  15. #SF=debug=sf
  16. SF=
  17.  
  18. INCS    = typedefs.h Whence_protos.h
  19. OBJS    = $(O)Whence.o 
  20.  
  21. Whence    : $(OBJS) $(INCS)
  22.     slink  FROM lib:c.o $(OBJS)  TO Whence LIB lib:sc.lib \
  23.         lib:amiga.lib noIcons quiet 
  24.  
  25. $(O)Whence.o   : Whence.c  $(INCS)
  26.     sc $(SF) novers   $(SO)   Whence
  27.  
  28. clean: 
  29.     delete Whence $(OBJS)  >nil:
  30.  
  31. indent:
  32.     indent -gnu Whence.c
  33.  
  34. protos:
  35.     sc novers genprotos Whence.c
  36.     delete  Whence_protos.h.info >nil:
  37.  
  38. all:    indent     protos Whence
  39.  
  40.